home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / telecomm / bbs / tbbs093.lha / Programmer / TechWWF_src / WWFData.c < prev    next >
C/C++ Source or Header  |  1994-04-07  |  744b  |  33 lines

  1. #include <TechWWF.h>
  2.  
  3. char *BBSName, *BBSSysOp, *BBSID;
  4. char *OutDir, *DoneString = { "" };
  5.  
  6. int ForceISO = 1;
  7.  
  8. char *UAlias, *UAddress, *UPostCode, *UCity, *UCountry, *UPhone;
  9.  
  10. struct CfgItem CfgList[] = {
  11.     "BBSName", &BBSName, -2,
  12.     "BBSSysOp", &BBSSysOp, -2,
  13.     "BBSID", &BBSID, -2,
  14.     "DoneMessage", &DoneString, -2,
  15.     "TmpDir", &OutDir, -2,
  16.     "UserAliasField", &UAlias, -2,
  17.     "UserAddressField", &UAddress, -2,
  18.     "UserPostalCodeField", &UPostCode, -2,
  19.     "UserCityField", &UCity, -2,
  20.     "UserCountryField", &UCountry, -2,
  21.     "UserPhoneField", &UPhone, -2,
  22.     "ForceISO", &ForceISO, 1,
  23.     "NoForceISO", &ForceISO, 0,
  24.     NULL, NULL, 0
  25. };
  26.  
  27. int Quiet, TaskPri = 0;
  28.  
  29. char *pack = { "lha a" };
  30.  
  31. char *unpack = { "lha x" };
  32.  
  33.